/* DEFAULT STYLES */

body {
    background-repeat: repeat;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0%;
}

body::before {
    content: "";
    background-image: url('bg.png');
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.06;
    z-index: -1;
    background-repeat: repeat;
    background-size: 300px 300px;
}

/* HEADER SECTION */

.title {
    position: relative;
    width: 100%;
}

.title img {
    width: 100%;
    height: auto;
    display: block;
}

/* FONT AWESOME SECTION */

i {
    margin: 0 5px;
}

i:hover {
    color: black;
}

/* NAVBAR SECTION */

.navbarrr ul {
    list-style-type: none;
    margin: 0;
    background-color: #3B649D;
    overflow: hidden;
    padding: 10px;
}

.navbarrr ul li {
    float: left;
    gap: 10px;
}

.navbarrr ul li a {
    display: block;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
}

.navbarrr ul li a:hover {
    background-color: #5f92da;
}

.navbarrr ul li ul {
    position: absolute;
    background-color: #3B649D;
    max-height: 0;
    padding: 0;
    transition: max-height 1s ease;
}

.navbarrr ul li:hover ul {
    max-height: 1000px;
    z-index: 1;
}

.navbarrr ul li ul li {
    float: none;
}

.navbarrr ul li ul li a {
    padding: 5px;
}
.navbarrr ul li a:hover {
    cursor: help;
}


/* FIRST SECTION */

.first_section {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    color: black;
    margin: 0px 0;
}

.portal_section,
.other_buttons {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	padding: 10px 0;
}

.portal_section{
    border-right: 1px dotted;
}

@media (max-width: 760px) {

    .portal_section,
    .other_buttons {
        flex: unset;
    }
}

.portal_section div,
.other_buttons div {
    width: 30%;
    text-align: center;
    padding: 15px 20px;
    box-sizing: border-box;
}

/* SECOND SECTION */

.second_section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #b5b7be;
	padding:10px 0; 
}

@media (max-width: 760px) {
    .second_section {
        display: block;
    }

    .notices h4 {
        word-break: break-all;
    }
}

.notices,
.events {
    flex: 1;
    text-align: center;
    padding: 10px;
    min-height: 250px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notices {
    border-left: 1px dotted;
}



.notices_buttons,
.event_buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 5px;
    justify-content: space-around;
}

.notices_buttons button,
.event_buttons button {
    margin: 5px;
}

.event_box,
.notice_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.eventslider-indicators {
    text-align: center;
}


.eventslider-container {
    display: flex;
    align-items: center;
    justify-content: center;
	margin:10px;
}

.eventslider {
    display: none;
    text-align: left;
}

.eventslider.activeevent {
    display: block;
}

.eventslider-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f7f7f7;
    margin-right: 5px;
    cursor: pointer;
}

.eventslider-indicator.activeevent {
    background-color: #333;
}

.notice-slider-container {
    display: flex;
    justify-content: center;
}

.notice-slider-container {
    height: 150px;
    overflow: hidden;
    position: relative;
    margin: 10px;

}

.notice-slider {
    animation: scroll 150s linear infinite;
    position: absolute;
    top: 0;
	
	&:hover {
		animation-play-state: paused;
	}
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.notice-item {
    padding: 10px;
    margin: 50px 0; /* Increase the space between items */
}
/* THIRD SECTION - SLIDER */

#slider {
    min-height: 300px;
    width: 100%;
    display: flex;
    background-color: white;
    flex-direction: column;
    align-items: center;
}

#slider h3 {
    margin: 3px;
}

.carousel-item {
    text-align: center;
    padding: 30px;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 100%;
    margin: 10px;
}

.carousel-indicators {
    margin-bottom: 0 !important;
}

.carousel-indicators li.active {
    background-color: red;

    /* margin: 0 !important; */
}

/* FOURTH SECTION */

.fourth_section {
    text-align: center;
    background-color: #ee955d; /*#fc8840;*/
    color: black;
}

.general_information {
    margin: 0px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10px;
}

.first_general_information,
.second_general_information {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex: 1;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.first_general_information{
    border-right: 1px dotted;
}

.first_general_information div,
.second_general_information div {
    width: 30%;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 760px) {

    .first_general_information div,
    .second_general_information div {
        width: 100%;
    }
}

/* FIFTH SECTION */

.r_and_information {
    /*display: flex;
    justify-content: space-around;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px; */
	display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    color: black;
    margin: 10px 0;
	
}
.first_r_n_d_info,
.second_r_n_d_info {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
	flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;	
}
.second_r_n_d_info{
    border-left: 1px dotted;
}
.r_and_information div {
    width: 40%;
    margin: 10px;
    padding: 5px;
    text-align: center;
    overflow-wrap: break-word;
}

@media (max-width: 760px) {
    .r_and_information div {
        width: 100%;
    }
}

/* SIXTH SECTION */

.sixth_section {
    background-color: #3bc1ff;
    color: black;
}

/* SEVENTH SECTION */

.seventh_section {
    background-color: #fcfcfc;
    color: black;
}


.downloads {
    margin: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.downloads div {
    flex: 1;
    padding: 5px;
    margin: 10px;
    text-align: center;
}

@media (max-width: 760px) {
    .downloads div {
        width: 100%;
    }
}

.heading_general_information,
.heading_r_and_d_section,
.heading_downloads,
.slider_heading {
    text-align: center;
    padding: 10px;
}

.imgicon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.imgicon img,
.imgiconFS img {
    width: 50px;
    padding: 5px;
    border-radius: 50%;
    border: 2px solid;
    height: 50px;
}

.hovspan{
    font-weight: 600;
    text-transform: capitalize;
	border-bottom: dotted 2px silver;

}
.hovspan:hover {
    cursor: pointer;
    font-weight: 600;
    transform: scale(1.1);
}
.first_section img,.fifth_section img{
    background-color: rgb(239 72 221 / 39%);
}
.first_section img:hover,.fifth_section img:hover{
    background-color: rgb(247, 238, 162);
}

@media (max-width: 760px) {

    p,
    a,
    .btn {
        font-size: 12px;
    }

    .read-more {
        padding: 5px;
        font-size: 10px;
	    }
}

@media (max-width:400px) {
    .carousel-item {
        min-height: 400px;
    }
}

